home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / gpen32k / source / lib / osrc / ocirclef.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-01  |  138 b   |  11 lines

  1. /*
  2.     グラフィック標準関数
  3. */
  4.  
  5. #include    <NORMLIB.h>
  6.  
  7. void circlef(int x1, int y1, int r, int c )
  8. {
  9.     circle(x1, y1, r, 0x22, c);
  10. }
  11.